home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).zip / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).adf / Include / Math.i < prev    next >
Text File  |  1989-07-02  |  790b  |  32 lines

  1.  
  2. {
  3.     These routines access the mathffp.library.  As of version 1.0c
  4. of the compiler, you can do all this stuff with normal expressions in
  5. the language, but I left this here for compatibility.
  6. }
  7.  
  8. function SPFix(f : real) : integer;
  9.     External;
  10. function SPFloat(f : integer) : real;
  11.     External;
  12. function SPCmp(f, r : real) : integer;
  13.     External;
  14. function SPTst(f : real) : integer;
  15.     External;
  16. function SPAbs(f : real) : real;
  17.     External;
  18. function SPNeg(f : real) : real;
  19.     External;
  20. function SPAdd(f, r : real) : real;
  21.     External;
  22. function SPSub(f, r : real) : real;
  23.     External;
  24. function SPMul(f, r : real) : real;
  25.     External;
  26. function SPDiv(f, r : real) : real;
  27.     External;
  28. function SPFloor(f : real) : real;
  29.     External;
  30. function SPCeil(f : real) : real;
  31.     External;
  32.